home *** CD-ROM | disk | FTP | other *** search
/ El Mac 7 / El Mac 7.iso / Macromedia® Director / Demos / DAVIDEO.DIR / 00136.ls < prev    next >
Encoding:
Text File  |  1995-08-02  |  3.8 KB  |  164 lines

  1. on initRearWindow
  2.   global rwObj, gMaxColors, deskTopPattern, black
  3.   set x to the colorDepth
  4.   if x >= 8 then
  5.     set gMaxColors to 255
  6.   end if
  7.   if x = 4 then
  8.     set gMaxColors to 15
  9.   end if
  10.   if x = 2 then
  11.     set gMaxColors to 3
  12.   end if
  13.   if x = 1 then
  14.     set gMaxColors to 0
  15.   end if
  16.   if gMaxColors = 255 then
  17.     put string(100) into field "colorIndex"
  18.   else
  19.     put string(gMaxColors / 2) into field "colorIndex"
  20.   end if
  21.   if factory("RearWindow") = 0 then
  22.     openXLib("RearWindow.XObj")
  23.   end if
  24.   initGlobals()
  25.   if objectp(rwObj) then
  26.     rwObj(mdispose)
  27.   end if
  28.   makeObjIfNeeded()
  29. end
  30.  
  31. on releaseRearWindow
  32.   global rwObj
  33.   if objectp(rwObj) then
  34.     rwObj(mdispose)
  35.   end if
  36.   closeXLib()
  37.   put " " into field "stage&Screen"
  38.   put " " into field "colorIndex"
  39.   set the mouseDownScript to EMPTY
  40.   set the keyDownScript to EMPTY
  41. end
  42.  
  43. on initGlobals
  44.   global white, ltGray, gray, dkGray, black, deskTopPattern
  45.   set white to -1
  46.   set ltGray to -2
  47.   set gray to -3
  48.   set dkGray to -4
  49.   set black to -5
  50.   set deskTopPattern to -99
  51. end
  52.  
  53. on displayAppName
  54.   global rwObj
  55.   set returnStr to rwObj(mGetAppName)
  56.   put "The name of the current application is:" & RETURN & QUOTE & returnStr & QUOTE into field "stage&screen"
  57. end
  58.  
  59. on coverDesktop patVar
  60.   global rwObj
  61.   makeObjIfNeeded()
  62.   rwObj(mPatToWindow, patVar)
  63. end
  64.  
  65. on UnCoverDesktop
  66.   global rwObj
  67.   if objectp(rwObj) then
  68.     rwObj(mdispose)
  69.   end if
  70.   unLoad()
  71. end
  72.  
  73. on makeObjIfNeeded
  74.   global rwObj
  75.   if not objectp(rwObj) then
  76.     set rwObj to RearWindow(mnew, "M")
  77.     if value(rwObj) < 0 then
  78.       alert("System error" && rwObj && "trying to create the RearWindow object in RAM (multiple-monitor config).")
  79.       stopMovie()
  80.       exit
  81.     end if
  82.     writeStageAndScreenBounds()
  83.     if the freeBlock < rwObj(mGetMemoryNeeded) then
  84.       if objectp(rwObj) then
  85.         rwObj(mdispose)
  86.         set rwObj to RearWindow(mnew, "S")
  87.       end if
  88.       if value(rwObj) < 0 then
  89.         alert("System error" && rwObj && "trying to create the RearWindow object in RAM (single-monitor config).")
  90.         stopMovie()
  91.         exit
  92.       end if
  93.       writeStageAndScreenBounds()
  94.     end if
  95.   end if
  96. end
  97.  
  98. on writeStageAndScreenBounds
  99.   global rwObj
  100.   set s to "Minimum Rect around All Screens:"
  101.   set s to s && rwObj(mGetScreenTop) & ", "
  102.   set s to s && rwObj(mGetScreenLeft) & ", "
  103.   set s to s && rwObj(mGetScreenBottom) & ", "
  104.   set s to s && rwObj(mGetScreenRight) & RETURN
  105.   set s to s & "Stage dimensions are:"
  106.   set s to s && the stageTop & ", "
  107.   set s to s && the stageLeft & ", "
  108.   set s to s && the stageBottom & ", "
  109.   set s to s && the stageRight
  110.   put s into field "stage&Screen"
  111. end
  112.  
  113. on fillWithIndexColor
  114.   global rwObj
  115.   makeObjIfNeeded()
  116.   set patVar to value(field "colorIndex")
  117.   rwObj(mIndexColorToWindow, patVar)
  118. end
  119.  
  120. on fillWithRGBColor
  121.   global rwObj
  122.   makeObjIfNeeded()
  123.   rwObj(mRGBColorToWindow, 10000, 25000, 65000)
  124. end
  125.  
  126. on bumpCIndex direction
  127.   global rwObj, white, gMaxColors
  128.   set cIndex to value(field "colorIndex")
  129.   if integerp(cIndex) then
  130.     set cIndex to cIndex + direction
  131.     if (cIndex < 0) or (cIndex > gMaxColors) then
  132.       exit
  133.     else
  134.       put string(cIndex) into field "colorIndex"
  135.       if cIndex then
  136.         makeObjIfNeeded()
  137.         rwObj(mIndexColorToWindow, cIndex)
  138.       else
  139.         coverDesktop(white)
  140.       end if
  141.       repeat while the stillDown
  142.         set cIndex to cIndex + direction
  143.         if (cIndex < 0) or (cIndex > gMaxColors) then
  144.           exit
  145.           next repeat
  146.         end if
  147.         put string(cIndex) into field "colorIndex"
  148.         if cIndex then
  149.           makeObjIfNeeded()
  150.           rwObj(mIndexColorToWindow, cIndex)
  151.           next repeat
  152.         end if
  153.         coverDesktop(white)
  154.       end repeat
  155.     end if
  156.   end if
  157. end
  158.  
  159. on wait n
  160.   startTimer()
  161.   repeat while the timer < n
  162.   end repeat
  163. end
  164.